home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / SpriteWorld 2.0 ƒ / SpriteWorld Examples / Large Background Scrolling / Large Background.h < prev    next >
Encoding:
Text File  |  1996-08-22  |  779 b   |  43 lines  |  [TEXT/KAHL]

  1. ///--------------------------------------------------------------------------------------
  2. // Large Background.h
  3. //
  4. // By: Vern Jensen
  5. ///--------------------------------------------------------------------------------------
  6.  
  7.  
  8. #ifndef __WINDOWS__
  9. #include <Windows.h>
  10. #endif
  11.  
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17.  
  18. void    main( void );
  19. void    CreateSpriteWorld( void );
  20. void    CreateSprites( void );
  21. void    SetUpAnimation( void );
  22.  
  23. void    DrawBackground( void );
  24. void    RunAnimation( void );
  25. void    ShutDown( void );
  26.  
  27. void    BallSpriteMoveProc(SpritePtr ballSpriteP);
  28.  
  29. void    KeyScrollRectMoveProc(
  30.     SpriteWorldPtr spriteWorldP,
  31.     SpritePtr followSpriteP);
  32.  
  33. void    AutoScrollMoveProc(
  34.     SpriteWorldPtr spriteWorldP,
  35.     SpritePtr followSpriteP);
  36.  
  37. void    UpdateKeys( void );
  38.  
  39.  
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43.